home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wrap.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10317);
  10.  script_bugtraq_id(373);
  11.  script_version ("$Revision: 1.23 $");
  12.  script_cve_id("CVE-1999-0149");
  13.  
  14.  name["english"] = "wrap";
  15.  name["francais"] = "wrap";
  16.  name["deutsch"] = "wrap";
  17.  script_name(english:name["english"], francais:name["francais"], deutsch:name["deutsch"]);
  18.  
  19.  desc["english"] = "The 'wrap' CGI is installed. This CGI allows
  20. anyone to get a listing for any directory with mode +755.
  21.  
  22.  
  23. *** Note that all implementations of 'wrap' are not
  24. *** vulnerable. See the relevant CVE entry.
  25.    
  26. Solution : remove it from /cgi-bin.
  27.  
  28. Risk factor : Low / Medium";
  29.  
  30.  
  31.  desc["francais"] = "Le cgi 'wrap' est installΘ. Celui-ci permet
  32. α n'importe qui d'obtenir un listing pour n'importe quel dossier
  33. de mode +755.
  34.  
  35.  
  36. *** Notez que toutes les implΘmentations de 'wrap'
  37. *** ne sont pas vulnΘrables. Consultez la bonne
  38. *** entrΘe CVE
  39.    
  40. Solution : retirez-le de /cgi-bin.
  41.  
  42. Facteur de risque : Faible/Moyen";
  43.  
  44.  desc["deutsch"] = "Das CGI 'wrap' ist installiert. Dieses CGI erm÷glicht
  45. jedem ein beliebiges Verzeichnis mit dem Modus +755 einzusehen.
  46.  
  47. L÷sung: L÷schen aus dem Verzeichnis /cgi-bin
  48.  
  49. Risikofaktor: Niedrig / Mittel";
  50.  
  51.  script_description(english:desc["english"], francais:desc["francais"], deutsch:desc["deutsch"]);
  52.  
  53.  summary["english"] = "Checks for the presence of /cgi-bin/wrap";
  54.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/wrap";
  55.  summary["deutsch"] = "▄berprⁿft auf Existenz von /cgi-bin/wrap"; 
  56.  
  57.  script_summary(english:summary["english"], francais:summary["francais"], deutsch:summary["deutsch"]);
  58.  
  59.  script_category(ACT_GATHER_INFO);
  60.  
  61.  
  62.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  63.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison",
  64.                 deutsch:"Dieses Skript ist urheberrechtlich geschⁿtzt (C) 1999 Renaud Deraison");
  65.  family["english"] = "CGI abuses";
  66.  family["francais"] = "Abus de CGI";
  67.  family["deutsch"] = "CGI Mi▀brauch";
  68.  script_family(english:family["english"], francais:family["francais"], deutsch:family["deutsch"]);
  69.  script_dependencie("find_service.nes", "no404.nasl");
  70.  script_require_ports("Services/www", 80);
  71.  exit(0);
  72. }
  73.  
  74. #
  75. # The script code starts here
  76. #
  77. include("http_func.inc");
  78. include("http_keepalive.inc");
  79. port = get_http_port(default:80);
  80. res = is_cgi_installed_ka(port:port, item:"wrap");
  81. if(res)security_warning(port);
  82.  
  83.